Interface WebViewManager

All Superinterfaces:
IPCObject
All Known Implementing Classes:
WebViewManagerImpl

public interface WebViewManager extends IPCObject
Information provided by the PKI file:

    \class WebViewManager
    
    \brief WebViewManager manages all WebViews.
    
    \example appWindow().getWebViewManager()
    
Author:
Auto-generated
  • Method Details

    • createWebView

      WebView createWebView(String title, String url, int width, int height)
      Information provided by the PKI file:
      
          \brief Creates a WebView.
          
          \param title, the title for the WebView.
          \param url, the URL for the WebView.
          \param width, the width for the WebView.
          \param height, the height for the WebView.
          
          \return WebView, the WebView object that is created.
          
              
      Parameters:
      title - Takes in a parameter of title
      url - Takes in a parameter of url
      width - Takes in a parameter of width
      height - Takes in a parameter of height
      Returns:
      WebView Returns a WebView
    • getWebView

      WebView getWebView(UUID id)
      Information provided by the PKI file:
      
          \brief Returns the WebView with the specified UUID.
          
          \param id, the UUID of the WebView of interest.
          
          \return WebView, the WebView object with the specified UUID.
          
              
      Parameters:
      id - Takes in a parameter of id
      Returns:
      WebView Returns a WebView
    • closeWebView

      boolean closeWebView(UUID id)
      Information provided by the PKI file:
      
          \brief Closes the WebView with the specified UUID.
          
          \param id, the UUID of the WebView of interest.
          
          \return bool, true if successful, otherwise false.
          
              
      Parameters:
      id - Takes in a parameter of id
      Returns:
      boolean Returns a boolean
    • closeAll

      void closeAll()
      Information provided by the PKI file:
      
          \brief Closes all WebViews.